Importing and checking out nested trees works!
authorColin Walters <walters@verbum.org>
Sat, 15 Oct 2011 05:22:42 +0000 (01:22 -0400)
committerColin Walters <walters@verbum.org>
Sat, 15 Oct 2011 05:23:01 +0000 (01:23 -0400)
src/libhacktree/hacktree-repo.c
src/libhtutil/ht-unix-utils.c
tests/libtest.sh
tests/t0004-checkout-test1.sh
tests/t0005-nested-tree.sh [new file with mode: 0755]

index 3de81c35d49dc4217e7b648bab468987501d08c0..bddec68c3070f87ee10b82b8807db7ba47861458 100644 (file)
@@ -1116,7 +1116,7 @@ add_one_path_to_tree_and_import (HacktreeRepo   *self,
             }
           /* Implicitly add intermediate directories */
           if (!add_one_directory_to_tree_and_import (self, component,
-                                                     abspath, current_tree, dir,
+                                                     component_abspath, current_tree, dir,
                                                      error))
             goto out;
         }
index 15ce3748f54840fb308d60cc223e65621381b732..57aa1f421d810402868f6d7b9b0c0bfff7824e25 100644 (file)
@@ -117,9 +117,9 @@ ht_util_path_split (const char *path)
     else
       {
         g_ptr_array_add (ret, g_strndup (p, slash - p));
-        p += 1;
+        p = slash + 1;
       }
-  } while (p);
+  } while (p && *p);
 
   return ret;
 }
@@ -127,7 +127,7 @@ ht_util_path_split (const char *path)
 char *
 ht_util_path_join_n (const char *base, GPtrArray *components, int n)
 {
-  int max = MAX(n+1, components->len);
+  int max = MIN(n+1, components->len);
   GPtrArray *subcomponents;
   char *path;
   int i;
index 1d565a5b5d12624a544269d90a47ef291cbf01b7..917eda1e9a297ef36cab73bd89b9e1fc773c5f1d 100644 (file)
@@ -32,6 +32,10 @@ die () {
     fi
 }
 
+assert_has_file () {
+    test -f $1 || (echo "Couldn't find $1"; exit 1)
+}
+
 setup_test_repository1 () {
     mkdir files
     cd files
@@ -45,7 +49,30 @@ setup_test_repository1 () {
     export ht_repo
     hacktree init $ht_repo
     hacktree commit $ht_repo -s "Test Commit 1" -b "Commit body first" --add=firstfile
-    hacktree commit $ht_repo -s "Test Commit 2" -b "Commit body first" --add=secondfile
+    hacktree commit $ht_repo -s "Test Commit 2" -b "Commit body second" --add=secondfile
+    hacktree fsck -q $ht_repo
+}
+
+setup_test_repository2 () {
+    mkdir files
+    cd files
+    ht_files=`pwd`
+    export ht_files
+    echo first > firstfile
+    mkdir baz
+    echo moo > baz/cow
+    echo alien > baz/saucer
+    mkdir baz/deeper
+    echo hi > baz/deeper/ohyeah
+    mkdir baz/another/
+    echo x > baz/another/y
+
+    mkdir ../repo
+    ht_repo="--repo=../repo"
+    export ht_repo
+    hacktree init $ht_repo
+    hacktree commit $ht_repo -s "Test Commit 1" -b "Commit body first" --add=firstfile
+    hacktree commit $ht_repo -s "Test Commit 2" -b "Commit body second" --add=baz/cow  --add=baz/saucer --add=baz/deeper/ohyeah --add=baz/another/y
     hacktree fsck -q $ht_repo
 }
 
index 1244ddad41a891854b13a46911af506810adf236..fa494e3cb1003ba502c6e3fabe561e5de1281fcb 100755 (executable)
@@ -29,8 +29,8 @@ echo 'ok setup'
 hacktree checkout $ht_repo HEAD $test_tmpdir/checkout1-head
 echo 'ok checkout cmd'
 cd $test_tmpdir/checkout1-head
-test -f firstfile
-test -f secondfile
+assert_has_file firstfile
+assert_has_file secondfile
 echo 'ok checkout verify exists'
 
 
diff --git a/tests/t0005-nested-tree.sh b/tests/t0005-nested-tree.sh
new file mode 100755 (executable)
index 0000000..76952bc
--- /dev/null
@@ -0,0 +1,39 @@
+#!/bin/bash
+#
+# Copyright (C) 2011 Colin Walters <walters@verbum.org>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# Author: Colin Walters <walters@verbum.org>
+
+set -e
+
+. libtest.sh
+
+echo '1..3'
+
+setup_test_repository2
+echo 'ok setup'
+hacktree checkout $ht_repo HEAD $test_tmpdir/checkout2-head
+echo 'ok checkout cmd'
+cd $test_tmpdir/checkout2-head
+assert_has_file firstfile
+assert_has_file baz/cow
+assert_has_file baz/saucer
+assert_has_file baz/deeper/ohyeah
+assert_has_file baz/another/y
+echo 'ok checkout verify exists'
+
+